projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d44f12b
)
(make-syntax-table): Use nil for "inherit".
author
Richard M. Stallman
<rms@gnu.org>
Wed, 11 Oct 1995 17:14:08 +0000
(17:14 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Wed, 11 Oct 1995 17:14:08 +0000
(17:14 +0000)
lisp/subr.el
patch
|
blob
|
history
diff --git
a/lisp/subr.el
b/lisp/subr.el
index fdf189c68511d927cd2893d2a8f42782a8973fcb..38c8376e8e587e858a95ab601be774ec49630da4 100644
(file)
--- a/
lisp/subr.el
+++ b/
lisp/subr.el
@@
-782,19
+782,19
@@
syntax table; other characters are copied from the standard syntax table."
i)
(setq i 0)
(while (<= i 31)
- (aset table i
13
)
+ (aset table i
nil
)
(setq i (1+ i)))
(setq i ?A)
(while (<= i ?Z)
- (aset table i
13
)
+ (aset table i
nil
)
(setq i (1+ i)))
(setq i ?a)
(while (<= i ?z)
- (aset table i
13
)
+ (aset table i
nil
)
(setq i (1+ i)))
(setq i 128)
(while (<= i 255)
- (aset table i
13
)
+ (aset table i
nil
)
(setq i (1+ i)))
table)))
\f